home *** CD-ROM | disk | FTP | other *** search
/ ftp.whtech.com / ftp.whtech.com.7z / ftp.whtech.com / emulators / mess / MESS 0.133 / Macintosh / MessMenu 0.7.0 OSX uni.dmg / MessMenu.app / Contents / MacOS / resetini.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  2008-09-30  |  204 b   |  10 lines

  1. #!/bin/sh
  2.  
  3. if [ -z "$MESSHOME" ]
  4. then
  5.     . ./messenv.sh
  6. fi
  7.  
  8. grep -v '^window .* 1$' "$MESSHOME"/mess.ini | sed 's/^throttle .* 1$/throttle 0/' >"$MESSHOME"/mess$$
  9. mv "$MESSHOME"/mess$$ "$MESSHOME"/mess.ini
  10.